home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / ver_cont / cvs-1.8 / cvs-1 / cvs-1.8.1 / NEWS < prev    next >
Encoding:
Text File  |  1996-05-06  |  37.8 KB  |  908 lines

  1. Changes since 1.7:
  2.  
  3. * New "cvs annotate" command to display the last modification for each
  4. line of a file, with the revision number, user checking in the
  5. modification, and date of the modification.  For more information see
  6. the `annotate' node in cvs.texinfo.
  7.  
  8. * The cvsinit shell script has been replaced by a cvs init command.
  9. The cvs init command creates some example administrative files which
  10. are similar to the files found in the examples directory (and copied
  11. by cvsinit) in previous releases.
  12.  
  13. * Added the patterns *.olb *.exe _$* *$ to default ignore list.
  14.  
  15. * There is now a $USER internal variable for *info files.
  16.  
  17. * There is no longer a separate `mkmodules' program; the functionality
  18. is now built into `cvs'.  If upgrading an old repository, it is OK to
  19. leave in the lines in the modules file which run mkmodules (the
  20. mkmodules actions will get done twice, but that is harmless); you will
  21. probably want to remove them once you are no longer using the old CVS.
  22.  
  23. * One can now specify user variables in *info files via the
  24. ${=varname} syntax; there is a -s global option to set them.  See the
  25. Variables node in cvs.texinfo for details.
  26.  
  27. Changes from 1.6 to 1.7:
  28.  
  29. * The default ignore list has changed slightly: *.obj has been added
  30. and CVS* has been changed to CVS CVS.adm.
  31.  
  32. * CVS now supports password authentication when accessing remote
  33. repositories; this is useful for sites that can't use rsh (because of
  34. a firewall, for example), and also don't have kerberos.  See node
  35. "Password authenticated" (in "Remote repositories", in
  36. doc/cvs.texinfo) for more details.  Note: This feature requires both
  37. the client and server to be upgraded.
  38.  
  39. * Using the -kb option to specify binary files now works--most cases
  40. did not work before.  See the "Binary files" section of
  41. doc/cvs.texinfo for details.
  42.  
  43. * New developer communication features.  See the "Watches" section of
  44. doc/cvs.texinfo for details.
  45.  
  46. * RCS keyword "Name" supported for "cvs update -r <tag>" and "cvs
  47. checkout -r <tag>".
  48.  
  49. * If there is a group whose name matches a compiled in value which
  50. defaults to "cvsadmin", only members of that group can use "cvs
  51. admin".  This replaces the CVS_NOADMIN option.
  52.  
  53. * CVS now sets the modes of files in the repository based on the
  54. CVSUMASK environment variable or a compiled in value defaulting to
  55. 002.  This way other developers will be able to access the files in
  56. the repository regardless of the umask of the developer creating them.
  57.  
  58. * The command names in .cvsrc now match the official name of the
  59. command, not the one (possibly an alias) by which it was invoked.  If
  60. you had previously relied on "cvs di" and "cvs diff" using different
  61. options, instead use a shell function or alias (for example "alias
  62. cvsdi='cvs diff -u'").  You also can specify global CVS options (like
  63. "-z") using the command name "cvs".
  64.  
  65. Changes from 1.5 to 1.6:
  66.  
  67. * Del updated the man page to include all of the new features
  68. of CVS 1.6.
  69.  
  70. * "cvs tag" now supports a "-r | -D" option for tagging an already
  71. tagged revision / specific revision of a file.
  72.  
  73. * There is a "taginfo" file in CVSROOT that supports filtering and
  74. recording of tag operations.
  75.  
  76. * Long options support added, including --help and --version options.
  77.  
  78. * "cvs release" no longer cares whether or not the directory being
  79. released has an entry in the `modules' file.
  80.  
  81. * The modules file now takes a -e option which is used instead of -o
  82. for "cvs export".  If your modules file has a -o option which you want
  83. to be used for "cvs export", change it to specify -e as well as -o.
  84.  
  85. * "cvs export" now takes a -k option to set RCS keyword expansion.
  86. This way you can export binary files.  If you want the old behavior,
  87. you need to specify -kv.
  88.  
  89. * "cvs update", "cvs rdiff", "cvs checkout", "cvs import", "cvs
  90. release", "cvs rtag", and "cvs tag" used to take -q and -Q options
  91. after the command name (e.g. "cvs update -q").  This was confusing
  92. because other commands, such as "cvs ci", did not.  So the options
  93. after the command name have been removed and you must now specify, for
  94. example, "cvs -q update", which has been supported since CVS 1.3.
  95.  
  96. * New "wrappers" feature.  This allows you to set a hook which
  97. transforms files on their way in and out of cvs (apparently on the
  98. NeXT there is some particular usefulness in tarring things up in the
  99. repository).  It also allows you to declare files as merge-by-copy
  100. which means that instead of trying to merge the file, CVS will merely
  101. copy the new version.  There is a CVSROOT/cvswrappers file and an
  102. optionsl ~/.cvswrappers file to support this feature.
  103.  
  104. * You can set CVSROOT to user@host:dir, not just host:dir, if your
  105. username on the server host is different than on the client host.
  106.  
  107. * VISUAL is accepted as well as EDITOR.
  108.  
  109. * $CVSROOT is expanded in *info files.
  110.  
  111. Changes from 1.4A2 to 1.5:
  112.  
  113. * Remote implementation.  This is very helpful when collaborating on a
  114. project with someone across a wide-area network.  This release can
  115. also be used locally, like other CVS versions, if you have no need for
  116. remote access.
  117.  
  118. Here are some of the features of the remote implementation:
  119. - It uses reliable transport protocols (TCP/IP) for remote repository
  120.   access, not NFS.  NFS is unusable over long distances (and sometimes
  121.   over short distances)
  122. - It transfers only those files that have changed in the repository or
  123.   the working directory.  To save transmission time, it will transfer
  124.   patches when appropriate, and can compress data for transmission.
  125. - The server never holds CVS locks while waiting for a reply from the client;
  126.   this makes the system robust when used over flaky networks.
  127.  
  128. The remote features are documented in doc/cvsclient.texi in the CVS
  129. distribution, but the main doc file, cvs.texinfo, has not yet been
  130. updated to include the remote features.
  131.  
  132. * Death support.  See src/README-rm-add for more information on this.
  133.  
  134. * Many speedups, especially from jtc@cygnus.com.
  135.  
  136. * CVS 1.2 compatibility code has been removed as a speedup.  If you
  137. have working directories checked out by CVS 1.2, CVS 1.3 or 1.4A2 will
  138. try to convert them, but CVS 1.5 and later will not (if the working
  139. directory is up to date and contains no extraneous files, you can just
  140. remove it, and then check out a new working directory).  Likewise if
  141. your repository contains a CVSROOT.adm directory instead of a CVSROOT
  142. directory, you need to rename it.
  143.  
  144. Fri Oct 21 20:58:54 1994  Brian Berliner  <berliner@sun.com>
  145.  
  146.     * Changes between CVS 1.3 and CVS 1.4 Alpha-2
  147.  
  148.     * A new program, "cvsbug", is provided to let you send bug reports
  149.     directly to the CVS maintainers.  Please use it instead of sending
  150.     mail to the info-cvs mailing list.  If your build fails, you may
  151.     have to invoke "cvsbug" directly from the "src" directory as
  152.     "src/cvsbug.sh".
  153.  
  154.     * A new User's Guide and Tutorial, written by Per Cederqvist
  155.     <ceder@signum.se> of Signum Support.  See the "doc" directory.  A
  156.     PostScript version is included as "doc/cvs.ps".
  157.  
  158.     * The Frequesntly Asked Questions file, FAQ, has been added to the
  159.     release.  Unfortunately, its contents are likely out-of-date.
  160.  
  161.     * The "cvsinit" shell script is now installed in the $prefix/bin
  162.     directory like the other programs.  You can now create new
  163.     CVS repositories with great ease.
  164.  
  165.     * Index: lines are now printed on output from 'diff' and 'rdiff',
  166.     in order to facilitate application of patches to multiple subdirs.
  167.  
  168.     * Support for a ~/.cvsrc file, which allows you to specify options
  169.     that are always supposed to be given to a specific command.  This
  170.     feature shows the non-orthogonality of the option set, since while
  171.     there may be an option to turn something on, the option to turn
  172.     that same thing off may not exist.
  173.  
  174.     * You can now list subdirectories that you wish to ignore in a
  175.     modules listing, such as:
  176.  
  177.         gcc  -a gnu/gcc, !gnu/gcc/testsuites
  178.  
  179.     which will check out everything underneath gnu/gcc, except
  180.     everything underneath gnu/gcc/testsuites.
  181.  
  182.     * It is now much harder to accidentally overwrite an existing tag
  183.     name, since attempting to move a tag name will result in a error,
  184.     unless the -F (force) flag is given to the tag subcommands.
  185.  
  186.     * Better error checking on matching of the repository used to
  187.     check code out from against the repository the current cvs
  188.     commnands would use. (Thanks to Mark Baushke <mdb@cisco.com>)
  189.  
  190.     * Better support for sites with multiple CVSROOT repositories has
  191.     been contributed.  The file "CVS/Root" in your working directory
  192.     is created to hold the full path to the CVS repository and a
  193.     simple check is made against your current CVSROOT setting.
  194.  
  195.     * You can now specify an RCS keyword substitution value when you
  196.     import files into the repository.
  197.  
  198.     * Uses a much newer version of Autoconf, and conforms to the GNU
  199.     coding standards much more closely.  No, it still doesn't have
  200.     long option names.
  201.  
  202.     * Code cleanup.  Many passes through gcc -Wall helped to identify
  203.     a number of questionable constructs.  Most arbitrary length limits
  204.     were removed.
  205.  
  206.     * Profiling to determine bottlenecks helped to identify the best
  207.     places to spend time speeding up the code, which was then done.  A
  208.     number of performance enhancements in filename matching have sped
  209.     up checkouts.
  210.  
  211.     * Many more contributions have been added to the "contrib"
  212.     directory.  See the README file in that directory for more
  213.     information.
  214.  
  215.     * "cvs commit" will try harder to not change the file's
  216.     modification time after the commit.  If the file does not change
  217.     as a result of the commit operation, CVS will preserve the
  218.     original modification time, thus speeding up future make-type
  219.     builds.
  220.  
  221.     * "cvs commit" now includes any removed files in the (optional)
  222.     pre-commit checking program that may be invoked.  Previously, only
  223.     added and modified files were included.
  224.  
  225.     * It is now possible to commit a file directly onto the trunk at a
  226.     specific revision level by doing "cvs commit -r3.0 file.c", where
  227.     "3.0" specifies the revision you wish to create.  The file must be
  228.     up-to-date with the current head of the trunk for this to succeed.
  229.  
  230.     * "cvs commit" will now function with a pre-commit program that
  231.     has arguments specified in the "commitinfo" file.
  232.  
  233.     * The "mkmodules" program will now look within the
  234.     $CVSROOT/CVSROOT/checkoutlist" file for any additional files that
  235.     should be automatically checked out within CVSROOT; mkmodules also
  236.     tries harder to preserve any execute bits the files may have
  237.     originally had.
  238.  
  239.     * "cvs diff" is much more accurate about its exit status now.  It
  240.     now returns the maximum exit status of any invoked diff.
  241.  
  242.     * The "-I !" option is now supported for the import and update
  243.     commands correctly.  It will properly clear the ignore list now.
  244.  
  245.     * Some problems with "cvs import" handling of .cvsignore have been
  246.     fixed; as well, some rampant recursion problems with import have
  247.     also been fixed.
  248.  
  249.     * "cvs rdiff" (aka "cvs patch") now tries to set the modify time
  250.     of any temporary files it uses to match those specified for the
  251.     particular revision.  This allows a more accurate patch image to
  252.     be created.
  253.  
  254.     * "cvs status" has improved revision descriptions.  "Working
  255.     revision" is used for the revision of the working file that you
  256.     edit directly; "Repository revision" is the revision of the file
  257.     with the $CVSROOT source repository.  Also, the output is clearer
  258.     with regard to sticky and branch revisions.
  259.  
  260.     * CVS no longer dumps core when given a mixture of directories and
  261.     files in sub-directories (as in "cvs ci file1 dir1/file2").
  262.     Instead, arguments are now clumped into their respective directory
  263.     and operated on in chunks, together.
  264.  
  265.     * If the CVSEDITOR environment variable is set, that editor is
  266.     used for log messages instead of the EDITOR environment variable.
  267.     This makes it easy to substitute intelligent programs to make more
  268.     elaborate log messages.  Contributed by Mark D Baushke
  269.     (mdb@cisco.com).
  270.  
  271.     * Command argument changes:
  272.     cvs:            The "-f" option has been added to ignore
  273.                 the ~/.cvsrc file.
  274.     commit:            Renamed the "-f logfile" option to the
  275.                 "-F logfile" option.  Added the "-f"
  276.                 option to force a commit of the specified
  277.                 files (this disables recursion).
  278.     history:        Added "-t timezone" option to force any
  279.                 date-specific output into the specified
  280.                 timezone.
  281.     import:            Added "-d" option to use the file's
  282.                 modification time as the time of the
  283.                 import. Added "-k sub" option to set the
  284.                 default RCS keyword substitution mode for
  285.                 newly-created files.
  286.     remove:            Added "-f" option to force the file's
  287.                 automatic removal if it still exists in
  288.                 the working directory (use with caution).
  289.     rtag:            Added "-F" option to move the tag if it
  290.                 already exists -- new default is to NOT
  291.                 move tags automatically.
  292.     tag:            Added "-F" option to move the tag if it
  293.                 already exists -- new default is to NOT
  294.                 move tags automatically.
  295.  
  296. Tue Apr  7 15:55:25 1992  Brian Berliner  (berliner at sun.com)
  297.  
  298.     * Changes between CVS 1.3 Beta-3 and official CVS 1.3!
  299.  
  300.     * A new shell script is provided, "./cvsinit", which can be run at
  301.     install time to help setup your $CVSROOT area.  This can greatly
  302.     ease your entry into CVS usage.
  303.  
  304.     * The INSTALL file has been updated to include the machines on
  305.     which CVS has compiled successfully.  I think CVS 1.3 is finally
  306.     portable.  Thanks to all the Beta testers!
  307.  
  308.     * Support for the "editinfo" file was contributed.  This file
  309.     (located in $CVSROOT/CVSROOT) can be used to specify a special
  310.     "editor" to run on a per-directory basis within the repository,
  311.     instead of the usual user's editor.  As such, it can verify that
  312.     the log message entered by the user is of the appropriate form
  313.     (contains a bugid and test validation, for example).
  314.  
  315.     * The manual pages cvs(1) and cvs(5) have been updated.
  316.  
  317.     * The "mkmodules" command now informs you when your modules file
  318.     has duplicate entries.
  319.  
  320.     * The "add" command now preserves any per-directory sticky tag when
  321.     you add a new directory to your checked-out sources.
  322.  
  323.     * The "admin" command is now a fully recursive interface to the
  324.     "rcs" program which operates on your checked-out sources.  It no
  325.     longer requires you to specify the full path to the RCS file.
  326.  
  327.     * The per-file sticky tags can now be effectively removed with
  328.     "cvs update -A file", even if you had checked out the whole
  329.     directory with a per-directory sticky tag.  This allows a great
  330.     deal of flexibility in managing the revisions that your checked-out
  331.     sources are based upon (both per-directory and per-file sticky
  332.     tags).
  333.  
  334.     * The "cvs -n commit" command now works, to show which files are
  335.     out-of-date and will cause the real commit to fail, or which files
  336.     will fail any pre-commit checks.  Also, the "cvs -n import ..."
  337.     command will now show you what it would've done without actually
  338.     doing it.
  339.  
  340.     * Doing "cvs commit modules" to checkin the modules file will no
  341.     properly run the "mkmodules" program (assuming you have setup your
  342.     $CVSROOT/CVSROOT/modules file to do so).
  343.  
  344.     * The -t option in the modules file (which specifies a program to
  345.     run when you do a "cvs rtag" operation on a module) now gets the
  346.     symbolic tag as the second argument when invoked.
  347.  
  348.     * When the source repository is locked by another user, that user's
  349.     login name will be displayed as the holder of the lock.
  350.  
  351.     * Doing "cvs checkout module/file.c" now works even if
  352.     module/file.c is in the Attic (has been removed from main-line
  353.     development).
  354.  
  355.     * Doing "cvs commit */Makefile" now works as one would expect.
  356.     Rather than trying to commit everything recursively, it will now
  357.     commit just the files specified.
  358.  
  359.     * The "cvs remove" command is now fully recursive.  To schedule a
  360.     file for removal, all you have to do is "rm file" and "cvs rm".
  361.     With no arguments, "cvs rm" will schedule all files that have been
  362.     physically removed for removal from the source repository at the
  363.     next "cvs commit".
  364.  
  365.     * The "cvs tag" command now prints "T file" for each file that was
  366.     tagged by this invocation and "D file" for each file that had the
  367.     tag removed (as with "cvs tag -d").
  368.  
  369.     * The -a option has been added to "cvs rtag" to force it to clean
  370.     up any old, matching tags for files that have been removed (in the
  371.     Attic) that may not have been touched by this tag operation.  This
  372.     can help keep a consistent view with your tag, even if you re-use
  373.     it frequently.
  374.  
  375. Sat Feb 29 16:02:05 1992  Brian Berliner  (berliner at sun.com)
  376.  
  377.     * Changes between CVS 1.3 Beta-2 and CVS 1.3 Beta-3
  378.  
  379.     * Many portability fixes, thanks to all the Beta testers!  With any
  380.     luck, this Beta release will compile correctly on most anything.
  381.     Hey, what are we without our dreams.
  382.  
  383.     * CVS finally has support for doing isolated development on a
  384.     branch off the current (or previous!) revisions.  This is also
  385.     extremely nice for generating patches for previously released
  386.     software while development is progressing on the next release.
  387.     Here's an example of creating a branch to fix a patch with the 2.0
  388.     version of the "foo" module, even though we are already well into
  389.     the 3.0 release.  Do:
  390.  
  391.         % cvs rtag -b -rFOO_2_0 FOO_2_0_Patch foo
  392.         % cvs checkout -rFOO_2_0_Patch foo
  393.         % cd foo
  394.         [[ hack away ]]
  395.         % cvs commit
  396.  
  397.     A physical branch will be created in the RCS file only when you
  398.     actually commit the change.  As such, forking development at some
  399.     random point in time is extremely light-weight -- requiring just a
  400.     symbolic tag in each file until a commit is done.  To fork
  401.     development at the currently checked out sources, do:
  402.  
  403.         % cvs tag -b Personal_Hack
  404.         % cvs update -rPersonal_Hack
  405.         [[ hack away ]]
  406.         % cvs commit
  407.  
  408.     Now, if you decide you want the changes made in the Personal_Hack
  409.     branch to be merged in with other changes made in the main-line
  410.     development, you could do:
  411.  
  412.         % cvs commit             # to make Personal_Hack complete
  413.         % cvs update -A             # to update sources to main-line
  414.         % cvs update -jPersonal_Hack # to merge Personal_Hack
  415.  
  416.     to update your checked-out sources, or:
  417.  
  418.         % cvs checkout -jPersonal_Hack module
  419.  
  420.     to checkout a fresh copy.
  421.  
  422.     To support this notion of forked development, CVS reserves
  423.     all even-numbered branches for its own use.  In addition, CVS
  424.     reserves the ".0" and ".1" branches.  So, if you intend to do your
  425.     own branches by hand with RCS, you should use odd-numbered branches
  426.     starting with ".3", as in "1.1.3", "1.1.5", 1.2.9", ....
  427.  
  428.     * The "cvs commit" command now supports a fully functional -r
  429.     option, allowing you to commit your changes to a specific numeric
  430.     revision or symbolic tag with full consistency checks.  Numeric
  431.     tags are useful for bringing your sources all up to some revision
  432.     level:
  433.  
  434.         % cvs commit -r2.0
  435.  
  436.     For symbolic tags, you can only commit to a tag that references a
  437.     branch in the RCS file.  One created by "cvs rtag -b" or from
  438.     "cvs tag -b" is appropriate (see below).
  439.  
  440.     * Roland Pesch <pesch@cygnus.com> and K. Richard Pixley
  441.     <rich@cygnus.com> were kind enough to contribute two new manual
  442.     pages for CVS: cvs(1) and cvs(5).  Most of the new CVS 1.3 features
  443.     are now documented, with the exception of the new branch support
  444.     added to commit/rtag/tag/checkout/update.
  445.  
  446.     * The -j options of checkout/update have been added.  The "cvs join"
  447.     command has been removed.
  448.  
  449.     With one -j option, CVS will merge the changes made between the
  450.     resulting revision and the revision that it is based on (e.g., if
  451.     the tag refers to a branch, CVS will merge all changes made in
  452.     that branch into your working file).
  453.  
  454.     With two -j options, CVS will merge in the changes between the two
  455.     respective revisions.  This can be used to "remove" a certain delta
  456.     from your working file.  E.g., If the file foo.c is based on
  457.     revision 1.6 and I want to remove the changes made between 1.3 and
  458.     1.5, I might do:
  459.  
  460.         % cvs update -j1.5 -j1.3 foo.c        # note the order...
  461.  
  462.     In addition, each -j option can contain on optional date
  463.     specification which, when used with branches, can limit the chosen
  464.     revision to one within a specific date.  An optional date is
  465.     specified by adding a colon (:) to the tag, as in:
  466.  
  467.         -jSymbolic_Tag:Date_Specifier
  468.  
  469.     An example might be what "cvs import" tells you to do when you have
  470.     just imported sources that have conflicts with local changes:
  471.  
  472.         % cvs checkout -jTAG:yesterday -jTAG module
  473.  
  474.     which tells CVS to merge in the changes made to the branch
  475.     specified by TAG in the last 24 hours.  If this is not what is
  476.     intended, substitute "yesterday" for whatever format of date that
  477.     is appropriate, like:
  478.  
  479.         % cvs checkout -jTAG:'1 week ago' -jTAG module
  480.  
  481.     * "cvs diff" now supports the special tags "BASE" and "HEAD".  So,
  482.     the command:
  483.  
  484.         % cvs diff -u -rBASE -rHEAD
  485.  
  486.     will effectively show the changes made by others (in unidiff
  487.     format) that will be merged into your working sources with your
  488.     next "cvs update" command.  "-rBASE" resolves to the revision that
  489.     your working file is based on.  "-rHEAD" resolves to the current
  490.     head of the branch or trunk that you are working on.
  491.  
  492.     * The -P option of "cvs checkout" now means to Prune empty
  493.     directories, as with "update".  The default is to not remove empty
  494.     directories.  However, if you do "checkout" with any -r options, -P
  495.     will be implied.  I.e., checking out with a tag will cause empty
  496.     directories to be pruned automatically.
  497.  
  498.     * The new file INSTALL describes how to install CVS, including
  499.     detailed descriptions of interfaces to "configure".
  500.  
  501.     * The example loginfo file in examples/loginfo has been updated to
  502.     use the perl script included in contrib/log.pl.  The nice thing
  503.     about this log program is that it records the revision numbers of
  504.     your change in the log message.
  505.  
  506.     Example files for commitinfo and rcsinfo are now included in the
  507.     examples directory.
  508.  
  509.     * All "#if defined(__STDC__) && __STDC__ == 1" lines have been
  510.     changed to be "#if __STDC__" to fix some problems with the former.
  511.  
  512.     * The lib/regex.[ch] files have been updated to the 1.3 release of
  513.     the GNU regex package.
  514.  
  515.     * The ndbm emulation routines included with CVS 1.3 Beta-2 in the
  516.     src/ndbm.[ch] files has been moved into the src/myndbm.[ch] files
  517.     to avoid any conflict with the system <ndbm.h> header file.  If
  518.     you had a previous CVS 1.3 Beta release, you will want to "cvs
  519.     remove ndbm.[ch]" form your copy of CVS as well.
  520.  
  521.     * "cvs add" and "cvs remove" are a bit more verbose, telling you
  522.     what to do to add/remove your file permanently.
  523.  
  524.     * We no longer mess with /dev/tty in "commit" and "add".
  525.  
  526.     * More things are quiet with the -Q option set.
  527.  
  528.     * New src/config.h option:  If CVS_BADROOT is set, CVS will not
  529.     allow people really logged in as "root" to commit changes.
  530.  
  531.     * "cvs diff" exits with a status of 0 if there were no diffs, 1 if
  532.     there were diffs, and 2 if there were errors.
  533.  
  534.     * "cvs -n diff" is now supported so that you can still run diffs
  535.     even while in the middle of committing files.
  536.  
  537.     * Handling of the CVS/Entries file is now much more robust.
  538.  
  539.     * The default file ignore list now includes "*.so".
  540.  
  541.     * "cvs import" did not expand '@' in the log message correctly.  It
  542.     does now.  Also, import now uses the ignore file facility
  543.     correctly.
  544.  
  545.     Import will now tell you whether there were conflicts that need to
  546.     be resolved, and how to resolve them.
  547.  
  548.     * "cvs log" has been changed so that you can "log" things that are
  549.     not a part of the current release (in the Attic).
  550.  
  551.     * If you don't change the editor message on commit, CVS now prompts
  552.     you with the choice:
  553.  
  554.         !)reuse this message unchanged for remaining dirs
  555.  
  556.     which allows you to tell CVS that you have no intention of changing
  557.     the log message for the remainder of the commit.
  558.  
  559.     * It is no longer necessary to have CVSROOT set if you are using
  560.     the -H option to get Usage information on the commands.
  561.  
  562.     * Command argument changes:
  563.     checkout:        -P handling changed as described above.
  564.                 New -j option (up to 2 can be specified)
  565.                 for doing rcsmerge kind of things on
  566.                 checkout.
  567.     commit:            -r option now supports committing to a
  568.                 numeric or symbolic tags, with some
  569.                 restrictions.  Full consistency checks will
  570.                 be done.
  571.                 Added "-f logfile" option, which tells
  572.                 commit to glean the log message from the
  573.                 specified file, rather than invoking the
  574.                 editor.
  575.     rtag:            Added -b option to create a branch tag,
  576.                 useful for creating a patch for a previous
  577.                 release, or for forking development.
  578.     tag:            Added -b option to create a branch tag,
  579.                 useful for creating a patch for a previous
  580.                 release, or for forking development.
  581.     update:            New -j option (up to 2 can be specified)
  582.                 for doing rcsmerge kind of things on
  583.                 update.
  584.  
  585. Thu Jan  9 10:51:35 MST 1992 Jeff Polk (polk at BSDI.COM)
  586.  
  587.     * Changes between CVS 1.3 Beta-1 and CVS 1.3 Beta-2
  588.  
  589.     * Thanks to K. Richard Pixley at Cygnus we now have function
  590.     prototypes in all the files
  591.  
  592.     * Some small changes to configure for portability.  There have
  593.     been other portability problems submitted that have not been fixed
  594.     (Brian will be working on those).  Additionally all __STDC__
  595.     tests have been modified to check __STDC__ against the constant 1 
  596.     (this is what the Second edition of K&R says must be true).
  597.  
  598.     * Lots of additional error checking for forked processes (run_exec)
  599.     (thanks again to K. Richard Pixley)
  600.  
  601.     * Lots of miscellaneous bug fixes - including but certainly not 
  602.     limited to:
  603.         various commit core dumps
  604.         various update core dumps
  605.         bogus results from status with numeric sticky tags
  606.         commitprog used freed memory
  607.         Entries file corruption caused by No_Difference
  608.         commit to revision broken (now works if branch exists)
  609.         ignore file processing broken for * and !
  610.         ignore processing didn't handle memory reasonably
  611.         miscellaneous bugs in the recursion processor
  612.         file descriptor leak in ParseInfo
  613.         CVSROOT.adm->CVSROOT rename bug
  614.         lots of lint fixes
  615.  
  616.     * Reformatted all the code in src (with GNU indent) and then 
  617.     went back and fixed prototypes, etc since indent gets confused.  The
  618.     rationale is that it is better to do it sooner than later and now
  619.     everything is consistent and will hopefully stay that way.
  620.     The basic options to indent were: "-bad -bbb -bap -cdb -d0 -bl -bli0 
  621.     -nce -pcs -cs -cli4 -di1 -nbc -psl -lp -i4 -ip4 -c41"  and then
  622.     miscellaneous formatting fixes were applied.  Note also that the 
  623.     "-nfc1" or "-nfca" may be appropriate in files where comments have
  624.     been carefully formatted (e.g, modules.c).
  625.  
  626. Sat Dec 14 20:35:22 1991  Brian Berliner  (berliner at sun.com)
  627.  
  628.     * Changes between CVS 1.2 and CVS 1.3 Beta are described here.
  629.  
  630.     * Lots of portability work.  CVS now uses the GNU "configure"
  631.     script to dynamically determine the features provided by your
  632.     system.  It probably is not foolproof, but it is better than
  633.     nothing.  Please let me know of any portability problems.  Some
  634.     file names were changed to fit within 14-characters.
  635.  
  636.     * CVS has a new RCS parser that is much more flexible and
  637.     extensible.  It should read all known RCS ",v" format files.
  638.  
  639.     * Most of the commands now are fully recursive, rather than just
  640.     operating on the current directory alone.  This includes "commit",
  641.     which makes it real easy to do an "atomic" commit of all the
  642.     changes made to a CVS hierarchy of sources.  Most of the commands
  643.     also correctly handle file names that are in directories other than
  644.     ".", including absolute path names.  Commands now accept the "-R"
  645.     option to force recursion on (though it is always the default now)
  646.     and the "-l" option to force recursion off, doing just "." and not
  647.     any sub-directories.
  648.  
  649.     * CVS supports many of the features provided with the RCS 5.x
  650.     distribution - including the new "-k" keyword expansion options.  I
  651.     recommend using RCS 5.x (5.6 is the current official RCS version)
  652.     and GNU diff 1.15 (or later) distributions with CVS.
  653.  
  654.     * Checking out files with symbolic tags/dates is now "sticky", in
  655.     that CVS remembers the tag/date used for each file (and directory)
  656.     and will use that tag/date automatically on the next "update" call.
  657.     This stickyness also holds for files checked out with the the new
  658.     RCS 5.x "-k" options.
  659.  
  660.     * The "cvs diff" command now recognizes all of the rcsdiff 5.x
  661.     options.  Unidiff format is available by installing the GNU
  662.     diff 1.15 distribution.
  663.  
  664.     * The old "CVS.adm" directories created on checkout are now called
  665.     "CVS" directories, to look more like "RCS" and "SCCS".  Old CVS.adm
  666.     directories are automagically converted to CVS directories.  The
  667.     old "CVSROOT.adm" directory within the source repository is
  668.     automagically changed into a "CVSROOT" directory as well.
  669.  
  670.     * Symbolic links in the source repository are fully supported ONLY
  671.     if you use RCS 5.6 or later and (of course) your system supports
  672.     symlinks.
  673.  
  674.     * A history database has been contributed which maintains the
  675.     history of certain CVS operations, as well as providing a wide array
  676.     of querying options.
  677.  
  678.     * The "cvs" program has a "-n" option which can be used with the
  679.     "update" command to show what would be updated without actually
  680.     doing the update, like:  "cvs -n update".  All usage statements
  681.     have been cleaned up and made more verbose.
  682.  
  683.     * The module database parsing has been rewritten.  The new format
  684.     is compatible with the old format, but with much more
  685.     functionality.  It allows modules to be created that grab pieces or
  686.     whole directories from various different parts of your source
  687.     repository.  Module-relative specifications are also correctly
  688.     recognized now, like "cvs checkout module/file.c".
  689.  
  690.     * A configurable template can be specified such that on a "commit", 
  691.     certain directories can supply a template that the user must fill
  692.     before completing the commit operation.
  693.  
  694.     * A configurable pre-commit checking program can be specified which
  695.     will run to verify that a "commit" can happen.  This feature can be
  696.     used to restrict certain users from changing certain pieces of the
  697.     source repository, or denying commits to the entire source
  698.     repository.
  699.  
  700.     * The new "cvs export" command is much like "checkout", but
  701.     establishes defaults suitable for exporting code to others (expands
  702.     out keywords, forces the use of a symbolic tag, and does not create
  703.     "CVS" directories within the checked out sources.
  704.  
  705.     * The new "cvs import" command replaces the deprecated "checkin"
  706.     shell script and is used to import sources into CVS control.  It is
  707.     also much faster for the first-time import.  Some algorithmic
  708.     improvements have also been made to reduce the number of
  709.     conflicting files on next-time imports.
  710.  
  711.     * The new "cvs admin" command is basically an interface to the
  712.     "rcs" program.  (Not yet implemented very well).
  713.  
  714.     * Signal handling (on systems with BSD or POSIX signals) is much
  715.     improved.  Interrupting CVS now works with a single interrupt!
  716.  
  717.     * CVS now invokes RCS commands by direct fork/exec rather than
  718.     calling system(3).  This improves performance by removing a call to
  719.     the shell to parse the arguments.
  720.  
  721.     * Support for the .cvsignore file has been contributed.  CVS will
  722.     now show "unknown" files as "? filename" as the result of an "update"
  723.     command.  The .cvsignore file can be used to add files to the
  724.     current list of ignored files so that they won't show up as unknown.
  725.  
  726.     * Command argument changes:
  727.     cvs:        Added -l to turn off history logging.
  728.             Added -n to show what would be done without actually
  729.             doing anything.
  730.             Added -q/-Q for quiet and really quiet settings.
  731.             Added -t to show debugging trace.
  732.     add:        Added -k to allow RCS 5.x -k options to be specified.
  733.     admin:        New command; an interface to rcs(1).
  734.     checkout:    Added -A to reset sticky tags/date/options.
  735.             Added -N to not shorten module paths.
  736.             Added -R option to force recursion.
  737.             Changed -p (prune empty directories) to -P option.
  738.             Changed -f option; forcing tags match is now default.
  739.             Added -p option to checkout module to standard output.
  740.             Added -s option to cat the modules db with status.
  741.             Added -d option to checkout in the specified directory.
  742.             Added -k option to use RCS 5.x -k support.
  743.     commit:        Removed -a option; use -l instead.
  744.             Removed -f option.
  745.             Added -l option to disable recursion.
  746.             Added -R option to force recursion.
  747.             If no files specified, commit is recursive.
  748.     diff:        Now recognizes all RCS 5.x rcsdiff options.
  749.             Added -l option to disable recursion.
  750.             Added -R option to force recursion.
  751.     history:    New command; displays info about CVS usage.
  752.     import:        Replaces "checkin" shell script; imports sources
  753.             under CVS control.  Ignores files on the ignore
  754.             list (see -I option or .cvsignore description above).
  755.     export:        New command; like "checkout", but w/special options
  756.             turned on by default to facilitate exporting sources.
  757.     join:        Added -B option to join from base of the branch;
  758.             join now defaults to only joining with the top two
  759.             revisions on the branch.
  760.             Added -k option for RCS 5.x -k support.
  761.     log:        Supports all RCS 5.x options.
  762.             Added -l option to disable recursion.
  763.             Added -R option to force recursion.
  764.     patch:        Changed -f option; forcing tags match is now default.
  765.             Added -c option to force context-style diffs.
  766.             Added -u option to support unidiff-style diffs.
  767.             Added -V option to support RCS specific-version
  768.             keyword expansion formats.
  769.             Added -R option to force recursion.
  770.     remove:        No option changes.  It's a bit more verbose.
  771.     rtag:        Equivalent to the old "cvs tag" command.
  772.             No option changes.  It's a lot faster for re-tag.
  773.     status:        New output formats with more information.
  774.             Added -l option to disable recursion.
  775.             Added -R option to force recursion.
  776.             Added -v option to show symbolic tags for files.
  777.     tag:        Functionality changed to tag checked out files
  778.             rather than modules; use "rtag" command to get the
  779.             old "cvs tag" behaviour.
  780.     update:        Added -A to reset sticky tags/date/options.
  781.             Changed -p (prune empty directories) to -P option.
  782.             Changed -f option; forcing tags match is now default.
  783.             Added -p option to checkout module to standard output.
  784.             Added -I option to add files to the ignore list.
  785.             Added -R option to force recursion.
  786.  
  787.     Major Contributors:
  788.  
  789.     * Jeff Polk <polk@bsdi.com> rewrote most of the grody code of CVS
  790.     1.2.  He made just about everything dynamic (by using malloc),
  791.     added a generic hashed list manager, re-wrote the modules database
  792.     parsing in a compatible - but extended way, generalized directory
  793.     hierarchy recursion for virtually all the commands (including
  794.     commit!), generalized the loginfo file to be used for pre-commit
  795.     checks and commit templates, wrote a new and flexible RCS parser,
  796.     fixed an uncountable number of bugs, and helped in the design of
  797.     future CVS features.  If there's anything gross left in CVS, it's
  798.     probably my fault!
  799.  
  800.     * David G. Grubbs <dgg@odi.com> contributed the CVS "history" and
  801.     "release" commands.  As well as the ever-so-useful "-n" option of
  802.     CVS which tells CVS to show what it would do, without actually
  803.     doing it.  He also contributed support for the .cvsignore file.
  804.  
  805.     * Paul Sander, HaL Computer Systems, Inc. <paul@hal.com> wrote and
  806.     contributed the code in lib/sighandle.c.  I added support for
  807.     POSIX, BSD, and non-POSIX/non-BSD systems.
  808.  
  809.     * Free Software Foundation contributed the "configure" script and
  810.     other compatibility support in the "lib" directory, which will help
  811.     make CVS much more portable.
  812.  
  813.     * Many others have contributed bug reports and enhancement requests.
  814.     Some have even submitted actual code which I have not had time yet
  815.     to integrate into CVS.  Maybe for the next release.
  816.  
  817.     * Thanks to you all!
  818.  
  819. Wed Feb  6 10:10:58 1991  Brian Berliner  (berliner at sun.com)
  820.  
  821.     * Changes from CVS 1.0 Patchlevel 1 to CVS 1.0 Patchlevel 2; also
  822.     known as "Changes from CVS 1.1 to CVS 1.2".
  823.  
  824.     * Major new support with this release is the ability to use the
  825.     recently-posted RCS 5.5 distribution with CVS 1.2.  See below for
  826.     other assorted bug-fixes that have been thrown in.
  827.  
  828.     * ChangeLog (new): Added Emacs-style change-log file to CVS 1.2
  829.     release.  Chronological description of changes between release.
  830.  
  831.     * README: Small fixes to installation instructions.  My email
  832.     address is now "berliner@sun.com".
  833.  
  834.     * src/Makefile: Removed "rcstime.h".  Removed "depend" rule.
  835.  
  836.     * src/partime.c:  Updated to RCS 5.5 version with hooks for CVS.
  837.     * src/maketime.c: Updated to RCS 5.5 version with hooks for CVS.
  838.     * src/rcstime.h:  Removed from the CVS 1.2 distribution.
  839.     Thanks to Paul Eggert <eggert@twinsun.com> for these changes.
  840.  
  841.     * src/checkin.csh: Support for RCS 5.5 parsing.
  842.     Thanks to Paul Eggert <eggert@twinsun.com> for this change.
  843.  
  844.     * src/collect_sets.c (Collect_Sets): Be quieter if "-f" option is
  845.     specified.  When checking out files on-top-of other files that CVS
  846.     doesn't know about, run a diff in the hopes that they are really
  847.     the same file before aborting.
  848.  
  849.     * src/commit.c (branch_number): Fix for RCS 5.5 parsing.
  850.     Thanks to Paul Eggert <eggert@twinsun.com> for this change.
  851.  
  852.     * src/commit.c (do_editor): Bug fix - fprintf missing argument
  853.     which sometimes caused core dumps.
  854.  
  855.     * src/modules.c (process_module): Properly NULL-terminate
  856.     update_dir[] in all cases.
  857.  
  858.     * src/no_difference.c (No_Difference): The wrong RCS revision was
  859.     being registered in certain (strange) cases.
  860.  
  861.     * src/patch.c (get_rcsdate): New algorithm.  No need to call
  862.     maketime() any longer.
  863.     Thanks to Paul Eggert <eggert@twinsun.com> for this change.
  864.  
  865.     * src/patchlevel.h: Increased patch level to "2".
  866.  
  867.     * src/subr.c (isdir, islink): Changed to compare stat mode bits
  868.     correctly.
  869.  
  870.     * src/tag.c (tag_file): Added support for following symbolic links
  871.     that are in the master source repository when tagging.  Made tag
  872.     somewhat quieter in certain cases.
  873.  
  874.     * src/update.c (update_process_lists): Unlink the user's file if it
  875.     was put on the Wlist, meaning that the user's file is not modified
  876.     and its RCS file has been removed by someone else.
  877.  
  878.     * src/update.c (update): Support for "cvs update dir" to correctly
  879.     just update the argument directory "dir".
  880.  
  881.     * src/cvs.h: Fixes for RCS 5.5 parsing.
  882.     * src/version_number.c (Version_Number): Fixes for parsing RCS 5.5
  883.     and older RCS-format files.
  884.     Thanks to Paul Eggert <eggert@twinsun.com> for these changes.
  885.  
  886.     * src/version_number.c (Version_Number): Bug fixes for "-f" option.
  887.     Bug fixes for parsing with certain branch numbers.  RCS
  888.     revision/symbol parsing is much more solid now.
  889.  
  890. Wed Feb 14 10:01:33 1990  Brian Berliner  (berliner at sun.com)
  891.  
  892.     * Changes from CVS 1.0 Patchlevel 0 to CVS 1.0 Patchlevel 1; also
  893.     known as "Changes from CVS 1.0 to CVS 1.1".
  894.  
  895.     * src/patch.c (get_rcsdate): Portability fix.  Replaced call to
  896.     timelocal() with call to maketime().
  897.  
  898. Mon Nov 19 23:15:11 1990  Brian Berliner  (berliner at prisma.com)
  899.  
  900.     * Sent CVS 1.0 release to comp.sources.unix moderator and FSF.
  901.  
  902.     * Special thanks to Dick Grune <dick@cs.vu.nl> for his work on the
  903.     1986 version of CVS and making it available to the world.  Dick's
  904.     version is available on uunet.uu.net in the
  905.     comp.sources.unix/volume6/cvs directory.
  906.  
  907. $CVSid: @(#)ChangeLog 1.35 94/10/22 $
  908.